home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Communications / PPPMonitor1.16 / Source / PPPMonitor_main.m < prev    next >
Text File  |  1996-01-17  |  352b  |  16 lines

  1. // -------------------------------------------------------------------------------------
  2. #import <appkit/appkit.h>
  3. #import "PPPMonitor.h"
  4.  
  5. /* main entry point */
  6. void main(int argc, char *argv[])
  7. {
  8.     
  9.     /* init/run app */
  10.     [PPPMonitor new];
  11.     if ([NXApp loadNibSection:"PPPMonitor.nib" owner:NXApp withNames:NO]) [NXApp run];
  12.     [NXApp free];
  13.     exit(0);
  14.     
  15. }
  16.